We are migrating the bug tracker to github Issues. This is now the preferred way to report NASM bugs.
Self-registration is disabled due to spam issue (mail gorcunov@gmail.com or hpa@zytor.com to create an account)
One usage that should be "nasm_infof" reads "nasm_intof" incorrectly. This patch fixes the error and allows building: $ git diff include diff --git a/include/error.h b/include/error.h index 85fcbe06..fde99e01 100644 --- a/include/error.h +++ b/include/error.h @@ -59,7 +59,7 @@ void printf_func(2, 3) nasm_listmsgf(errflags flags, const char *fmt, ...); void printf_func(1, 2) nasm_debug(const char *fmt, ...); void printf_func(2, 3) nasm_debugf(errflags flags, const char *fmt, ...); void printf_func(1, 2) nasm_info(const char *fmt, ...); -void printf_func(2, 3) nasm_intof(errflags flags, const char *fmt, ...); +void printf_func(2, 3) nasm_infof(errflags flags, const char *fmt, ...); void printf_func(2, 3) nasm_warn(errflags flags, const char *fmt, ...); void printf_func(1, 2) nasm_nonfatal(const char *fmt, ...); void printf_func(2, 3) nasm_nonfatalf(errflags flags, const char *fmt, ...); $
Thanks, fix checked in!